GET /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id}Get the roles associated with a client's scope for a specific client.
- HTTP Example:
GET /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id} | - API Example:
ScopeMappedClientResource.getClientScopeMappings({'realm': , 'app-name': , 'id': …}); |
- Output:
- List<RoleRepresentation> -
- Produces:
- application/json
|
POST /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id}Add client-level roles to the client's scope
- HTTP Example:
POST /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id} | - API Example:
ScopeMappedClientResource.addClientScopeMapping({'realm': , 'app-name': , 'id': …, '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|
DELETE /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id}Remove client-level roles from the client's scope.
- HTTP Example:
DELETE /admin/realms/{realm}/clients-by-id/{app-name}/scope-mappings/clients-by-id/{id} | - API Example:
ScopeMappedClientResource.deleteClientScopeMapping({'realm': , 'app-name': , 'id': …, '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|